home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
tools
/
packer
/
pack
/
packit
/
install_packit
next >
Wrap
Text File
|
1995-03-09
|
885b
|
52 lines
; Installation script for PackIt
(transcript "Installing PackIt...")
(copylib
(prompt "Install PowerPacker library.")
(help @copylib-help)
(source "LIBS/powerpacker.library")
(dest "libs:")
(confirm)
)
(set name
(askdir
(prompt "Install PackIt where?")
(help @askdir-help)
(default "C:")
)
)
(set prefs
(askdir
(prompt "Install PackItPrefs where?")
(help @askdir-help)
(default "SYS:Prefs")
)
)
(set cputype (+(database "CPU")) )
( if (> cputype 68020)
(set packit "PackIt030")
(set packit "PackIt")
)
(copyfiles
(source packit)
(dest name)
(newname "PackIt")
)
(copyfiles
(source packitprefs)
(dest prefs)
(infos)
)
(set @default-dest name)
(exit)